home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_ypupated.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  84 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10243);
  10.  script_version ("$Revision: 1.13 $");
  11.  script_cve_id("CVE-1999-0208");
  12.  name["english"] = "ypupdated service";
  13.  name["francais"] = "Service ypupdated";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "
  17. The ypupdated RPC service is running.  Some implementation of this daemon
  18. allow a remote user to execute arbitrary shell commands as root.
  19.  
  20. *** No security hole regarding this program have been tested, so 
  21. *** this might be a false positive
  22.  
  23. Solution : We suggest that you disable this service.
  24. Risk factor : High";
  25.  
  26.  
  27.  desc["francais"] = "
  28. Le service RPC ypupdated tourne.
  29. Certaines versions permettent α un
  30. utilisateur distant d'executer
  31. des commandes arbitraires en tant
  32. que root.
  33.  
  34. * AUCUN PROBLEME DE SECURITE 
  35.   N'A ETE TESTE, DONC CETTE
  36.   ALERTE EST PEUT ETRE 
  37.   FAUSE *
  38.  
  39. Il est recommandΘ que vous dΘsactiviez
  40. ce service.
  41.  
  42. Facteur de risque : ElevΘ";
  43.  
  44.  
  45.  script_description(english:desc["english"], francais:desc["francais"]);
  46.  
  47.  summary["english"] = "Checks the presence of a RPC service";
  48.  summary["francais"] = "VΘrifie la prΘsence d'un service RPC";
  49.  script_summary(english:summary["english"], francais:summary["francais"]);
  50.  
  51.  script_category(ACT_GATHER_INFO);
  52.  
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  55.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  56.  family["english"] = "RPC"; 
  57.  family["francais"] = "RPC";
  58.  script_family(english:family["english"], francais:family["francais"]);
  59.  script_dependencie("rpc_portmap.nasl");
  60.  script_require_keys("rpc/portmap");
  61.  exit(0);
  62. }
  63.  
  64. #
  65. # The script code starts here
  66. #
  67.  
  68. include("misc_func.inc");
  69.  
  70.  
  71. RPC_PROG = 100028;
  72. tcp = 0;
  73. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  74. if(!port){
  75.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  76.     tcp = 1;
  77.     }
  78.  
  79. if(port)
  80. {
  81.  if(tcp)security_warning(port);
  82.  else security_warning(port, protocol:"udp");
  83. }
  84.